home *** CD-ROM | disk | FTP | other *** search
- # This file makes routines that are used everywher.
- #
-
- SITEDIR=..
- CC=gcc
- OPT=-O -fstrength-reduce -fomit-frame-pointer -fcombine-regs
- CFLAGS=$(OPT) -I$(SITEDIR)
- LDFLAGS=$(OPT)
- SHELL=/bin/sh
-
- .SUFFIXES:
- .SUFFIXES: .o .c
- .c.o:
- $(CC) $(CFLAGS) -c $*.c
-
- default: all
-
- triptrap: all
- all: extra.o main.o
-
- extra.o: extra.c extra.h $(SITEDIR)/site.h
-
- main.o: main.c extra.h $(SITEDIR)/site.h
-
- # We don't make `texmf.o', since the TeX and Metafont need to use
- # different names, hence they need different .o files.
-
-
- clean:
- rm -f *.o
-
- veryclean: clean
-